home *** CD-ROM | disk | FTP | other *** search
/ Scene Storm / Scene Storm - Volume 1.iso / coding / asm / utils / recoqlib / include / libraries / recoq.h < prev    next >
C/C++ Source or Header  |  1980-01-03  |  692b  |  34 lines

  1. #ifndef LIBRARIES_RECOQ_H
  2. #define LIBRARIES_RECOQ_H
  3. /*
  4. **      $Filename: libraries/recoq.h $
  5. **      $Release: 1.0 $
  6. **      $Revision: 1.1  $
  7. **      $Date: 93/02/12 $
  8. **
  9. **      recoq.library definitions
  10. **
  11. **      (C) Copyright 1993 LSD.
  12. **      All Rights Reserved
  13. **/
  14.  
  15. /*------------------------------------------------------------------------*/
  16.  
  17. #ifndef EXEC_TYPES_H
  18. #include <exec/types.h>
  19. #endif
  20.  
  21. /*------------------------------------------------------------------------*/
  22.  
  23. #define RECOQVERSION 1
  24.  
  25. /* recoq FileType struct used by 'C' functions in order to pass data */
  26.  
  27. struct rqFileType
  28.     {
  29.     ULONG rq_StringPtr;
  30.     ULONG rq_StringLen;
  31.     };
  32.  
  33. #endif    /* LIBRARIES_RECOQ_H */
  34.